home *** CD-ROM | disk | FTP | other *** search
- /*
- ** File: HelloWorld.c
- ** Source #2
- **
- ** Note, unless you use very outdated or odd compiled you may
- ** not care about opening and closing all necessary libraries and
- ** files, as we use AutoOpen/AutoClose feature most compilers
- ** supports nowadays.
- */
-
- #include <stdio.h>
- #include "HelloWorld_strings.h"
-
- void main(void)
- {
- printf(GetString(MSG_TEXT_1));
- printf("%s - %s\n", GetString(MSG_TEXT_2),
- GetString(MSG_TEXT_3));
- }
-